home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
gcc
/
libmat.lha
/
src
/
mdiv.cc
< prev
next >
Wrap
C/C++ Source or Header
|
1980-01-01
|
136b
|
9 lines
// MATRIX LIB
// TOMMY JOHANSSON 1995
#include "matrix.h"
Matrix operator /(const float x,const Matrix& A)
{
return(x*inv(A));
}